Tables [dbo].[FinancialEntityGLAccount]
Properties
PropertyValue
Created10:31:22 AM Tuesday, March 02, 2010
Last Modified11:40:03 AM Monday, February 20, 2012
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Indexes IX_FinancialEntityGLAccount_1: FinancialEntityKeyFinancialEntityKeyuniqueidentifier16
No
Indexes IX_FinancialEntityGLAccount: GLAccountKeyGLAccountKeyuniqueidentifier16
No
GLAccountPurposeCodenchar(3)6
No
Cluster Primary Key PK_FinancialEntityGLAccount: FinancialEntityGLAccountKeyFinancialEntityGLAccountKeyuniqueidentifier16
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_FinancialEntityGLAccount: FinancialEntityGLAccountKeyPK_FinancialEntityGLAccountFinancialEntityGLAccountKey
Yes
IX_FinancialEntityGLAccountGLAccountKey
IX_FinancialEntityGLAccount_1FinancialEntityKey
SQL Script
CREATE TABLE [dbo].[FinancialEntityGLAccount]
(
[FinancialEntityKey] [uniqueidentifier] NOT NULL,
[GLAccountKey] [uniqueidentifier] NOT NULL,
[GLAccountPurposeCode] [nchar] (3) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[FinancialEntityGLAccountKey] [uniqueidentifier] NOT NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[FinancialEntityGLAccount] ADD CONSTRAINT [PK_FinancialEntityGLAccount] PRIMARY KEY CLUSTERED ([FinancialEntityGLAccountKey]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [IX_FinancialEntityGLAccount_1] ON [dbo].[FinancialEntityGLAccount] ([FinancialEntityKey]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [IX_FinancialEntityGLAccount] ON [dbo].[FinancialEntityGLAccount] ([GLAccountKey]) ON [PRIMARY]
GO
Uses